home *** CD-ROM | disk | FTP | other *** search
/ 1,000+ Great Games / 1_1000 Games.iso / DOSGAMES / BOGGLE.ZIP / SOURCE.ZIP / DICE.HPP < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-30  |  237 b   |  17 lines

  1. #ifndef  BOGDICE_H
  2. #define  BOGDICE_H
  3.  
  4. #include  "common.hpp"
  5.  
  6. class Dice;
  7.  
  8. class Dice {
  9.    char faces[7];
  10.  
  11.  public:
  12.    Dice(const char *);
  13.    char *Roll();         //return a face based on random # generator
  14. };
  15.  
  16. #endif
  17.